home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000291_fdc@sesame.cc.columbia.edu_Mon Sep 22 13:26:51 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 14534 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: destination file name
  6. Date: 22 Sep 2003 13:17:36 -0400
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <bknarg$hla$1@sesame.cc.columbia.edu>
  10. References: <q4Fbb.5$7e5.3@newssvr22.news.prodigy.com>
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1064251056 4771 128.59.59.56 (22 Sep 2003 17:17:36 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 22 Sep 2003 17:17:36 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14534
  16.  
  17. In article <q4Fbb.5$7e5.3@newssvr22.news.prodigy.com>,
  18. Jun Zhang  <nugulus@netscape.net> wrote:
  19. : I did
  20. : send \%1 /tmp/\%1
  21. : where the value of \%1 is mydout.
  22. : kermit reported,
  23. : SENDING: mydout => /tmp/mydout => //mydout
  24. : and the file is sent to remotehost:/mydout. How can I make the 
  25. : destination file remotehost:/tmp/mydout?
  26. Let's assume the remote Kermit program is a fairly modern one
  27. (it would be easier for us to answer your questions if you included
  28. information like this).  Then you would tell the receiving Kermit
  29. to SET RECEIVE PATHNAMES ABSOLUTE.  Read about this command here:
  30.  
  31.   http://www.columbia.edu/kermit/ckermit70.html#x4.10
  32.  
  33. or type "help set receive" at the C-Kermit> or K-95> prompt.
  34.  
  35. Alternatively you could start the remote Kermit in server mode and then
  36. tell the client to:
  37.  
  38.   remote cd /tmp
  39.   send \%1
  40.   finish  ; (or bye)
  41.  
  42. - Frank
  43.